home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 March
/
PCWorld_2002-03_cd.bin
/
Software
/
TemaCD
/
xteq
/
setup.exe
/
{app}
/
plugins
/
XQ Notepad+ 1.xpl
< prev
next >
Wrap
Text File
|
2000-08-06
|
957b
|
50 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Program Options\Other Programs\Notepad+"
"NAME"="Notepad+ WordWrap"
"VERSION"="1.01"
"LANGUAGE"="VBScript"
"TEXT 1"="Enable Word Wrap in Notepad+"
"DESCRIPTION 1"="Checking Box sets Word Wrap as default."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://members.aol.com/ojatex/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
sP="HKCU\Software\RogSoft\Notepad+\Preferences\General\"
sV2="Wordwrap"
Sub Plugin_Initialize
if RegPathExists(sp) then
i=RegReadValue(sp & sv2)
if i=1 then SetUIElement 1,true
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sp & sv2,"1",1)
else
Call RegWriteValue(sp & sv2,"0",1)
end if
End Sub
Sub Plugin_Terminate
End Sub